You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

page.tsx 343B

2 yıl önce
2 yıl önce
2 yıl önce
1234567891011121314151617181920
  1. import React from 'react'
  2. import Main from '@/app/components/datasets/hit-testing'
  3. type Props = {
  4. params: Promise<{ datasetId: string }>
  5. }
  6. const HitTesting = async (props: Props) => {
  7. const params = await props.params
  8. const {
  9. datasetId,
  10. } = params
  11. return (
  12. <Main datasetId={datasetId} />
  13. )
  14. }
  15. export default HitTesting